【例子介绍】api管理平台源码
便捷管理API调用分发,接口计费等。
【相关图片】
【源码结构】
.
├── api_spms_open-master
│ ├── LICENSE
│ ├── README.MD
│ ├── app
│ │ ├── Cache
│ │ │ └── view
│ │ ├── Core
│ │ │ ├── app.php
│ │ │ ├── database
│ │ │ │ ├── config.php
│ │ │ │ └── mysql_db.php
│ │ │ ├── default.php
│ │ │ ├── env.php
│ │ │ ├── method
│ │ │ │ ├── Cache.php
│ │ │ │ ├── Controller.php
│ │ │ │ ├── Storage.php
│ │ │ │ └── app.php
│ │ │ └── route
│ │ │ ├── Request.php
│ │ │ └── Route.php
│ │ ├── Http
│ │ │ ├── Controller
│ │ │ │ ├── Admin
│ │ │ │ │ ├── HandleController.php
│ │ │ │ │ └── IndexController.php
│ │ │ │ ├── Common
│ │ │ │ │ └── CommonController.php
│ │ │ │ ├── Controller.php
│ │ │ │ ├── IndexController.php
│ │ │ │ └── User
│ │ │ │ ├── HandleController.php
│ │ │ │ └── IndexController.php
│ │ │ ├── Method
│ │ │ │ ├── Authentication.php
│ │ │ │ ├── Redis.php
│ │ │ │ ├── app.php
│ │ │ │ ├── default.php
│ │ │ │ └── function.php
│ │ │ └── Model
│ │ │ ├── admin.php
│ │ │ ├── app.php
│ │ │ └── user.php
│ │ ├── Plugin
│ │ │ ├── app.php
│ │ │ └── smtp
│ │ │ ├── class.phpmailer.php
│ │ │ ├── class.smtp.php
│ │ │ ├── config.php
│ │ │ ├── functions.php
│ │ │ └── index.php
│ │ ├── default.php
│ │ └── init.php
│ ├── composer.json
│ ├── composer.lock
│ ├── config
│ │ ├── app.php
│ │ ├── count.php
│ │ ├── database.php
│ │ ├── email.php
│ │ ├── redis.php
│ │ └── webset.php
│ ├── data.sql
│ ├── public
│ │ ├── assets
│ │ │ ├── awesome
│ │ │ │ ├── css
│ │ │ │ │ ├── family.css
│ │ │ │ │ ├── font-awesome.min.css
│ │ │ │ │ ├── main.css
│ │ │ │ │ └── patch.css
│ │ │ │ ├── fonts
│ │ │ │ │ ├── S6u9w4BMUTPHh6UVSwiPHA.ttf
│ │ │ │ │ ├── S6uyw4BMUTPHjx4wWw.ttf
│ │ │ │ │ ├── fontawesome-webfont.woff2
│ │ │ │ │ └── w8gaH2QvRug1_rTfnQyn3A.ttf
│ │ │ │ └── js
│ │ │ │ ├── bootstrap.min.js
│ │ │ │ ├── jquery-3.2.1.min.js
│ │ │ │ ├── main.js
│ │ │ │ ├── plugins
│ │ │ │ │ ├── bootstrap-datepicker.min.js
│ │ │ │ │ ├── bootstrap-notify.min.js
│ │ │ │ │ ├── chart.js
│ │ │ │ │ ├── dataTables.bootstrap.min.js
│ │ │ │ │ ├── fullcalendar.min.js
│ │ │ │ │ ├── jquery-ui.custom.min.js
│ │ │ │ │ ├── jquery.dataTables.min.js
│ │ │ │ │ ├── jquery.vmap.min.js
│ │ │ │ │ ├── jquery.vmap.sampledata.js
│ │ │ │ │ ├── jquery.vmap.world.js
│ │ │ │ │ ├── moment.min.js
│ │ │ │ │ ├── pace.min.js
│ │ │ │ │ ├── select2.min.js
│ │ │ │ │ └── sweetalert.min.js
│ │ │ │ └── popper.min.js
│ │ │ ├── font_1332398_z4m8t7izbwk.css
│ │ │ ├── layui
│ │ │ │ ├── css
│ │ │ │ │ ├── layui.css
│ │ │ │ │ ├── layui.mobile.css
│ │ │ │ │ └── modules
│ │ │ │ │ ├── code.css
│ │ │ │ │ ├── laydate
│ │ │ │ │ │ └── default
│ │ │ │ │ │ └── laydate.css
│ │ │ │ │ └── layer
│ │ │ │ │ └── default
│ │ │ │ │ ├── icon-ext.png
│ │ │ │ │ ├── icon.png
│ │ │ │ │ ├── layer.css
│ │ │ │ │ ├── loading-0.gif
│ │ │ │ │ ├── loading-1.gif
│ │ │ │ │ └── loading-2.gif
│ │ │ │ ├── font
│ │ │ │ │ ├── iconfont.eot
│ │ │ │ │ ├── iconfont.svg
│ │ │ │ │ ├── iconfont.ttf
│ │ │ │ │ ├── iconfont.woff
│ │ │ │ │ └── iconfont.woff2
│ │ │ │ ├── images
│ │ │ │ │ └── face
│ │ │ │ │ ├── 0.gif
│ │ │ │ │ ├── 1.gif
│ │ │ │ │ ├── 10.gif
│ │ │ │ │ ├── 11.gif
│ │ │ │ │ ├── 12.gif
│ │ │ │ │ ├── 13.gif
│ │ │ │ │ ├── 14.gif
│ │ │ │ │ ├── 15.gif
│ │ │ │ │ ├── 16.gif
│ │ │ │ │ ├── 17.gif
│ │ │ │ │ ├── 18.gif
│ │ │ │ │ ├── 19.gif
│ │ │ │ │ ├── 2.gif
│ │ │ │ │ ├── 20.gif
│ │ │ │ │ ├── 21.gif
│ │ │ │ │ ├── 22.gif
│ │ │ │ │ ├── 23.gif
│ │ │ │ │ ├── 24.gif
│ │ │ │ │ ├── 25.gif
│ │ │ │ │ ├── 26.gif
│ │ │ │ │ ├── 27.gif
│ │ │ │ │ ├── 28.gif
│ │ │ │ │ ├── 29.gif
│ │ │ │ │ ├── 3.gif
│ │ │ │ │ ├── 30.gif
│ │ │ │ │ ├── 31.gif
│ │ │ │ │ ├── 32.gif
│ │ │ │ │ ├── 33.gif
│ │ │ │ │ ├── 34.gif
│ │ │ │ │ ├── 35.gif
│ │ │ │ │ ├── 36.gif
│ │ │ │ │ ├── 37.gif
│ │ │ │ │ ├── 38.gif
│ │ │ │ │ ├── 39.gif
│ │ │ │ │ ├── 4.gif
│ │ │ │ │ ├── 40.gif
│ │ │ │ │ ├── 41.gif
│ │ │ │ │ ├── 42.gif
│ │ │ │ │ ├── 43.gif
│ │ │ │ │ ├── 44.gif
│ │ │ │ │ ├── 45.gif
│ │ │ │ │ ├── 46.gif
│ │ │ │ │ ├── 47.gif
│ │ │ │ │ ├── 48.gif
│ │ │ │ │ ├── 49.gif
│ │ │ │ │ ├── 5.gif
│ │ │ │ │ ├── 50.gif
│ │ │ │ │ ├── 51.gif
│ │ │ │ │ ├── 52.gif
│ │ │ │ │ ├── 53.gif
│ │ │ │ │ ├── 54.gif
│ │ │ │ │ ├── 55.gif
│ │ │ │ │ ├── 56.gif
│ │ │ │ │ ├── 57.gif
│ │ │ │ │ ├── 58.gif
│ │ │ │ │ ├── 59.gif
│ │ │ │ │ ├── 6.gif
│ │ │ │ │ ├── 60.gif
│ │ │ │ │ ├── 61.gif
│ │ │ │ │ ├── 62.gif
│ │ │ │ │ ├── 63.gif
│ │ │ │ │ ├── 64.gif
│ │ │ │ │ ├── 65.gif
│ │ │ │ │ ├── 66.gif
│ │ │ │ │ ├── 67.gif
│ │ │ │ │ ├── 68.gif
│ │ │ │ │ ├── 69.gif
│ │ │ │ │ ├── 7.gif
│ │ │ │ │ ├── 70.gif
│ │ │ │ │ ├── 71.gif
│ │ │ │ │ ├── 8.gif
│ │ │ │ │ └── 9.gif
│ │ │ │ ├── lay
│ │ │ │ │ └── modules
│ │ │ │ │ ├── carousel.js
│ │ │ │ │ ├── code.js
│ │ │ │ │ ├── colorpicker.js
│ │ │ │ │ ├── element.js
│ │ │ │ │ ├── flow.js
│ │ │ │ │ ├── form.js
│ │ │ │ │ ├── jquery.js
│ │ │ │ │ ├── laydate.js
│ │ │ │ │ ├── layedit.js
│ │ │ │ │ ├── layer.js
│ │ │ │ │ ├── laypage.js
│ │ │ │ │ ├── laytpl.js
│ │ │ │ │ ├── mobile.js
│ │ │ │ │ ├── rate.js
│ │ │ │ │ ├── slider.js
│ │ │ │ │ ├── table.js
│ │ │ │ │ ├── transfer.js
│ │ │ │ │ ├── tree.js
│ │ │ │ │ ├── upload.js
│ │ │ │ │ └── util.js
│ │ │ │ ├── layui.all.js
│ │ │ │ └── layui.js
│ │ │ └── other
│ │ │ ├── css
│ │ │ │ ├── bootstrap.min.css
│ │ │ │ ├── layui.css
│ │ │ │ ├── oneui.css
│ │ │ │ ├── site.min.css
│ │ │ │ └── userPay.css
│ │ │ ├── img
│ │ │ │ ├── alipay.jpg
│ │ │ │ ├── api.png
│ │ │ │ ├── qqpay.jpg
│ │ │ │ └── weixin.jpg
│ │ │ └── js
│ │ │ ├── clipboard.min.js
│ │ │ └── jquery.min.js
│ │ ├── favicon.ico
│ │ ├── index.php
│ │ ├── nginx.htaccess
│ │ └── readme.txt
│ ├── route
│ │ └── web.php
│ ├── vendor
│ │ ├── autoload.php
│ │ ├── composer
│ │ │ ├── ClassLoader.php
│ │ │ ├── LICENSE
│ │ │ ├── autoload_classmap.php
│ │ │ ├── autoload_namespaces.php
│ │ │ ├── autoload_psr4.php
│ │ │ ├── autoload_real.php
│ │ │ ├── autoload_static.php
│ │ │ └── installed.json
│ │ └── jaeger
│ │ ├── phpquery-single
│ │ │ ├── README.md
│ │ │ ├── composer.json
│ │ │ └── phpQuery.php
│ │ └── querylist
│ │ ├── QueryList.php
│ │ ├── README.md
│ │ └── composer.json
│ ├── version.php
│ ├── view
│ │ ├── admin
│ │ │ ├── addapi.html
│ │ │ ├── adduser.html
│ │ │ ├── apiinfo.html
│ │ │ ├── apilist.html
│ │ │ ├── datainfo.html
│ │ │ ├── editapi.html
│ │ │ ├── email.html
│ │ │ ├── fileinfo.html
│ │ │ ├── fooer.html
│ │ │ ├── head.html
│ │ │ ├── header.html
│ │ │ ├── index.html
│ │ │ ├── login.html
│ │ │ ├── nav.html
│ │ │ ├── order.html
│ │ │ ├── passwd.html
│ │ │ ├── redis.html
│ │ │ ├── useredit.html
│ │ │ ├── userinfo.html
│ │ │ └── webset.html
│ │ ├── api
│ │ │ ├── icp
│ │ │ │ └── index.php
│ │ │ └── qrcode
│ │ │ └── index.php
│ │ ├── tpl
│ │ │ └── default
│ │ │ ├── 404.html
│ │ │ ├── doc.html
│ │ │ ├── footer.html
│ │ │ ├── header.html
│ │ │ └── index.html
│ │ └── user
│ │ ├── apiedit.html
│ │ ├── buyapi.html
│ │ ├── buypay.html
│ │ ├── code.php
│ │ ├── fooer.html
│ │ ├── forget.html
│ │ ├── goods.html
│ │ ├── head.html
│ │ ├── header.html
│ │ ├── index.html
│ │ ├── login.html
│ │ ├── nav.html
│ │ ├── order.html
│ │ ├── owned.html
│ │ ├── passwd.html
│ │ └── register.html
│ └── 使用说明.txt
└── api管理平台源码.zip
55 directories, 258 files
评论